SetConstantBuffers(Int32,Int32,Buffer[]) Method
In This Topic
Set the constant buffers used by the shader pipeline stage.
Syntax
'Declaration
Public Overloads Sub SetConstantBuffers( _
ByVal As Integer, _
ByVal As Integer, _
ByVal ParamArray () As Buffer _
)
public void SetConstantBuffers(
int ,
int ,
params Buffer[]
)
Parameters
- startSlot
- Index into the device's zero-based array to begin setting constant buffers to (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - 1).
- numBuffers
- Number of buffers to set (ranges from 0 to D3D11_COMMONSHADER_CONSTANT_BUFFER_API_SLOT_COUNT - StartSlot).
- constantBuffers
- Array of constant buffers (see Buffer) being given to the device.
See Also